home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 12511500 / var1378.dms / var1378.adf / devs / MountList next >
Text File  |  1992-03-12  |  3KB  |  120 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler */
  4.  
  5. NEWCON: 
  6.     Handler = L:Newcon-Handler
  7.     Priority = 5
  8.     StackSize = 1000
  9. #
  10.  
  11. /* This is an example of a non-filing system mount using a handler written
  12.    in C.
  13. */
  14.  
  15. SPEAK:     
  16.     Handler = L:Speak-Handler
  17.     Stacksize = 6000
  18.     Priority = 5
  19.     GlobVec = -1
  20. #
  21.  
  22. /*  This is an example of an alternative type of non-filing device mount,
  23.     used to mount the non-buffered serial handler
  24. */
  25.  
  26. AUX:
  27.     Handler = L:Aux-Handler
  28.     Stacksize = 1000
  29.     Priority = 5
  30. #
  31. /*  This is a non-filing system device */
  32.  
  33. PIPE:      
  34.     Handler = L:Pipe-Handler
  35.     Stacksize = 6000
  36.     Priority = 5
  37.     GlobVec = -1
  38. #
  39. NULL:      Handler = L:null-handler
  40.            Stacksize = 500
  41.            Priority = 5
  42.            GlobVec = 1
  43. #
  44. /* This is an example of a mount list entry for using the recoverable 
  45.    ram disk.  Depending on the amount of memory you wish to devote to
  46.    it, you may want to change the HighCyl value.
  47. */
  48.  
  49. RAD:       Device = ramdrive.device
  50.            Unit   = 0
  51.            Flags  = 0
  52.            Surfaces  = 2
  53.            BlocksPerTrack = 11
  54.            Reserved = 2
  55.            Interleave = 0
  56.            LowCyl = 0  ;  HighCyl = 21
  57.            Buffers = 5
  58.            BufMemType = 1
  59. #
  60.  
  61. /* Mount a 5.25" disk drive to be mounted as DF2: */
  62.  
  63. DF2:       Device = trackdisk.device
  64.            Unit   = 2
  65.            Flags  = 1
  66.            Surfaces  = 2
  67.            BlocksPerTrack = 11
  68.            Reserved = 2
  69.            Interleave = 0
  70.            LowCyl = 0  ;  HighCyl = 39
  71.            Buffers = 20
  72.            BufMemType = 3
  73. #
  74.  
  75. /* An example mount entry using the fast file system with a partition
  76.    of the hard disk using the 2090 disk controller.  PREP has been
  77.    used to create the first partition (up to cylinder 20).  The second
  78.    partition is MOUNTed, using the following entry:
  79.    NOTE: Some hard disk drivers require more stack than specified here.
  80.    Some may required less.
  81.    (The hard disk is not included; this is only an example.)
  82. */
  83.  
  84. FAST:
  85.     Device = hddisk.device
  86.     FileSystem = l:FastFileSystem
  87.     Unit   = 1
  88.     Flags  = 0
  89.     Surfaces  = 4
  90.     BlocksPerTrack = 17
  91.     Reserved = 2
  92.     Interleave = 0
  93.     LowCyl = 21  ;  HighCyl = 800
  94.     Buffers = 30
  95.     GlobVec = -1
  96.     BufMemType = 1
  97.     Mount = 1
  98.     DosType = 0x444F5301
  99.     StackSize = 4000
  100. #
  101.  
  102. /* Let's say you have an A2000 with an internal drive, and an external
  103.    drive, and you want to refer to the external drive as DF1: as well
  104.    as DF2:   Well, this MountList entry will do it for you.  This technique
  105.    can be extended to provide you with a drive A: and B: if you really
  106.    want.
  107. */
  108.  
  109. DF1:       Device = trackdisk.device
  110.            Unit   = 2
  111.            Flags  = 1
  112.            Surfaces  = 2
  113.            BlocksPerTrack = 11
  114.            Reserved = 2
  115.            Interleave = 0
  116.            LowCyl = 0  ;  HighCyl = 79
  117.            Buffers = 20
  118.            BufMemType = 3
  119. #
  120.